projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
078d2d3
)
BYTE_CODE_SAFE typo fix
author
Paul Eggert
<eggert@cs.ucla.edu>
Sat, 24 Dec 2016 04:30:11 +0000
(20:30 -0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sat, 24 Dec 2016 04:30:41 +0000
(20:30 -0800)
* src/bytecode.c (FETCH): Depend on the value of BYTE_CODE_SAFE,
not on whether it is defined.
src/bytecode.c
patch
|
blob
|
history
diff --git
a/src/bytecode.c
b/src/bytecode.c
index 06a800bef4980a4cd7d5b53a288f19a554ee86e6..5e0055f4ee4363d17756cb00ca0d66a4275fbaed 100644
(file)
--- a/
src/bytecode.c
+++ b/
src/bytecode.c
@@
-328,7
+328,7
@@
relocate_byte_stack (struct byte_stack *stack)
\f
/* Fetch the next byte from the bytecode stream. */
-#if
def
BYTE_CODE_SAFE
+#if BYTE_CODE_SAFE
#define FETCH (eassert (stack.byte_string_start == SDATA (stack.byte_string)), *stack.pc++)
#else
#define FETCH *stack.pc++